
@media print {
   /* Setting content width, unsetting floats and margins */
	
		

@page {size: A4; margin:1.5cm 1cm ; }


@page:right{ 
  @bottom-left {
    margin: 1.9cm 0cm;
    border-top: 5px solid #666;
    content: "My book";
    font-size: 9pt;
    color: #333;
  }
}

	
/** Setting margins */       

	 
/* Or: */
/*@page :left {
margin: 1cm;
}

@page :right {
margin: 1cm;
} */

/* The first page of a print can be manipulated as well */
@page :first, {
  margin: 1cm 1cm ;
}	
	

/* This saves ink */
body {
font: 10pt Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
line-height: 1.3;
background: #fff !important;
color: #000;
}
	
img.dons {display: table-caption;position:relative;
		margin: 0}	

#content {
width: 67%; 
margin: 0px;  

}
#sidebar {
width: 33%; 
margin-top: 100px;  
float: right;

}	
div#languagebar {display: none}
div#logouttop {display: none}		

h1 {
font-size: 16pt;
}

h2, h3, h4 {
font-size: 12pt;
margin-top: 14px; 
}	

	
	/* Defining all page breaks */
.don {
  position:relative;
  top: 0;page-break-after: avoid
}

p	{page-break-after: avoid}
	

a {
    page-break-inside:avoid
}
blockquote {
    page-break-inside: avoid;
}
h1, h2, h3, h4, h5, h6 { page-break-after:avoid; 
     page-break-inside:avoid }
 
	
img  { display: block; page-break-inside:avoid; 
      }
	
.widget, .widgettitle  {page-break-inside:avoid} 		

	
	
/* Displaying link color and link behaviour */
a:link, a:visited, a {
background: transparent;
color: #520;
font-weight: bold;
text-decoration: none;
text-align: left;
}
#footer {
   position:relative;
   bottom:0;
   width:100%;
   height:10px;   /* Height of the footer */
   background:#520;
            }

/* Hiding unnecessary elements for the print */

  .dons, header, #header-widgets, nav, .select-buttons, #cssmenu, .print, print:active, .seechartclass, .floatleft,
#breadcrumbs, .post-byline, .meta-single, 
.site-title img, .post-tags, .readability 
{
display: none;
}	

/* Adding custom messages before and after the content */
/*#footer:after {
content: "\ All Rights Reserved. (c) 2019";
color: #999 !important;
font-size: 1em;
padding-top: 30px;
}	
	*/


